home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funbnot.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  332 b   |  20 lines

  1. /*
  2. \funcref{fun\_bnot}{void fun\_bnot ()}
  3.     {}
  4.     {}
  5.     {}
  6.     {}
  7.     {funbnot.c}
  8.     {
  9.         Function {\em fun\_bnot()} bitwise-not's the last pushed
  10.         variable. This variable is assumed to be of type {\em e\_int}.
  11.     }
  12. */
  13.  
  14. #include "icm-exec.h"
  15.  
  16. void fun_bnot ()
  17. {
  18.     stack [sp].vu.intval = ~stack [sp].vu.intval;
  19. }
  20.